home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 August: Tool Chest / Dev.CD Aug 98 TC.toast / Sample Code / Snippets / Sound / Speech Recognition sample / _headers / MainFunctions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-15  |  858 b   |  33 lines  |  [TEXT/CWIE]

  1. #ifndef __MAINFUNC__
  2. #define __MAINFUNC__
  3.  
  4. #include <String.h>
  5. #include <Types.h>
  6. #include <OSA.h>
  7. #include <Components.h>
  8. #include <AppleEvents.h>
  9. #include <Resources.h>
  10. #include <Sound.h>
  11. #include <Speech.h>
  12.  
  13. #ifndef __STRUCT__
  14. #include "Struct.h"
  15. #endif
  16.  
  17. OSErr    ParseRefCon            (SpeechInfoPtr theSpeechInfo,
  18.                             CommandPtr theCommand);
  19. OSErr    ChannelCommand        (long commandNumber);
  20. OSErr    LightCommand        (long commandNumber);
  21. OSErr    ScriptCommand        (long commandNumber);
  22. OSErr    PhoneCommand        (long commandNumber);
  23. OSErr    GameCommand            (long commandNumber);
  24. OSErr    StereoCommand        (long commandNumber);
  25. OSErr    TVCommand            (long commandNumber);
  26. OSErr    LaserdiskCommand    (long commandNumber);
  27. OSErr    VCRCommand            (long commandNumber);
  28. OSErr    VolumeCommand        (long commandNumber);
  29. OSErr    PlaySndCommand        (long commandNumber);
  30. OSErr    QuitCommand            (long commandNumber);
  31.  
  32. #endif
  33.